Using AutoCode Solution Generator
Purposeβ
This document aims to help you step by step, to create your solution/project and generate backend web services & UI pages from end to end by using Net Core Genesisβ CLI-Command Line Interface just in 3-5 minutes.
Before continuing, please have a look at our Presentation about AutoCode Solution Generator Process and its Outcomes.
It's assumed that you already purchased and created your Net Core Genesis account.
Prerequisitesβ
- Please check [Prerequisites] section and complete them before continuing.
- Also remember that AutoCode Solution Generator uses Database-First approach to create your solution/project.
Download CLI based AutoCode Solution Generator file using one of the links below according to your operating systemβ
Windows
https://api.netcoregenesis.com/Genesis/download/cli?operatingsystem=win-x64
MAC OS
https://api.netcoregenesis.com/Genesis/download/cli?operatingsystem=osx-x64
Linux
https://api.netcoregenesis.com/Genesis/download/cli?operatingsystem=linux-x64
*If you've already downloaded before, be sure it is the latest version and up-to-date ** Version numbers are representational
Note: In theory, you will NOT get a security warning in your browser. But if the opposite happens, first be sure you download it from one of the links above or let it be checked by Kaspersky VirusDesk
Youβll get a file named "genesis-yourOSname-x64.tar.gz"
- Unzip the file
- Open a Terminal
- Change directory to the unzipped folder
cd genesis-YourOSname-x64
Note : If you get any error through the installation which blocks you, check the log files in genesis-yourOSname-x64/Logs
Start creating a projectβ
Run the create command:
./genesis create --path {full_or_relative_path_to_new_project}
If you've already ran create command before, you have a config file in Configs folder
./genesis create --from-config {your_config_file_in_Configs_folder.json}
If the specified path does not exist, it will be created. If you donβt specify a path, it will be created in your AutoCode Solution Generator's folder with the name of {YourSolutionName}
Some examples:
./genesis create
./genesis create --path ./MyUnicornProject
From Config file
./genesis create --from-config config_create_2020-07-01-14-53.json
_Note: To see available functions, visit AutoCode Solution Generator Commands section.
Please enter your Genesis subscription credentials to authenticate;β
E-mail address :
Password:
After authentication, dependencies will be checkedβ
If you see each one is checked, youβre ready to go.
Checking Dependencies...
β Dotnet SDK 3.1+ (Required)
β EF Core Command-line Tools 3.0+ (Required)
β npm or yarn (Required)
β Docker (Optional)
β Docker Compose (Optional)
β git (Optional)
β Node.js 10.14.0+ (Optional)
** Version numbers are representational. Please check Prerequisites
Please choose template typeβ
There are 2 architecture types. If you are unsure about it, generally option β(1) - Single Microservice (Monolithic)β will be suitable for you.
Type the number and press enter
(1) - Single Microservice (Monolithic): #This is the standard MVC project
(2) - Multiple Microservices and a Gateway: #If you follow a Microservices architecture, choose this one
Application/Solution Name : Default=(My_Application)β
Specify any name of your choice for your solution and press enter.
Use only alphanumeric, . (dot) and _ (underscore) characters.
You can skip simply by pressing enter, the default name will be My_Application.
Microservice Name : Default=(Microservice)β
Specify any name of your choice for your services and press enter.
Use only alphanumeric and _ (underscore) characters.
You can skip simply by pressing enter, the default name will be Microservice.
If youβve chosen β(2) - Multiple Microservices and a Gatewayβ in previous steps, You will be asked for BFF and Microservice names separately.
i) Backend For Frontend Name : Default=(BFF)
ii) Microservice 1 Name : Default=(Microservice_1)
iii) Microservice 2 Name : Default=(Microservice_2)
iv) Microservice 3 Name : Default=(Microservice_3)
Database Typeβ
Warning #1: Be sure your database is up and running properly with the given connection data from now on.
Warning #2: The DB user you provide needs the privileges to access system tables.
Type the number and press enter.
(1) - MSSQL
(2) - PostgreSQL
(3) - MySQL
(4) - Oracle
How do you want to create your connection string?β
This connection string will be used to scaffold your web services and UI pages from your existing database. So be sure it is correct.
Type the number and press enter.
(1) - Provide full connection string. (use this option for Trusted_Connection=true)
(2) - Use connection string builder to create it. #If you are not sure, use this option
(3) - Leave it blank. (Scaffold step cannot be used)
If you choose to provide connection string, please check Connection String Verify and be sure it is right.
Some connection string examples:
Warning: ignore { and } characters when you replace with your real data. Also change user name/id if necessary.
1) MSSQL
Server=127.0.0.1;Database={Your_DB_Name};User Id=sa;Password={Your_User_Password};
2) PostgreSQL
User ID=postgres;Password={Your_User_Password};Host=127.0.0.1;Port=5432;Database={Your_DB_Name};Pooling=true;
3) MySQL
Server=localhost;Database={Your_DB_Name};Uid=root;Pwd={Your_User_Password};
An example of MySQL DB for option "(2) - Use connection string builder to create it":
Database Name : MyDB_Name
Host : 127.0.0.1
Port: 3306
User: root
For trusted connections such as Windows Authenticationβ
Do you want to connect via trusted connection?
(y/yes) - Yes
(n/no) - No
Please select 'schemas' to use at scaffold step.β
If there is only 1 schema, this step will be skipped.
If there are more than one, choose Schemas in order to fetch their 'tables'.
(Press <space> to select/deselect, <a> to toggle all, <enter> to continue)
β Schema1
β―β― Schema2 # excluded by pressing <space>
β Schema3
Please select 'tables' to use at scaffold step.β
Choose tables in order them to be used for generating web services and UI pages.
(Press <space> to select/deselect, <a> to toggle all, <enter> to continue)
β Table1
β―β― Table2 # excluded by pressing <space>
β Table3
β Table4
β Table5
Please enter valid information to create Genesis database.β
Genesis database is the core database required for framework to run.
Warning: The DB user you provide needs the privilege to create database.
You can either specify the same database as above or use/create a separate one. If there is not an existing database with the name specified, migration step will create it.
Database Type
Type the number and press enter.
(1) - MSSQL
(2) - PostgreSQL
(3) - MySQL
(4) - Oracle
How do you want to create your connection string?
You can use an existing Genesis database
Type the number and press enter.
(1) - Provide full connection string. (use this option for Trusted_Connection=true)
(2) - Use connection string builder to create it. #If you are not sure, use this option
If you choose to provide connection string, please check Connection String Verify and be sure it is right.
Do you want to create UI project?β
An administration panel including all of your pages with labels, components, rules, validations and so on from your database will be created from scratch. It is developed in React JS.
Type the number and press enter.
(1) - Create empty UI project.
(2) - Create UI project and generate pages/models from database. (Recommended)
(3) - Skip.
UI Project Name : Default=(UI)β
Specify any name of your choice for your UI project and press enter.
You can skip simply by pressing enter, the default name will be UI.
Youβll see a summary of your choicesβ
-Summary-
Template Type : Single Microservice (Monolithic)
ApplicationName : Your_Application_Name
Database Type(Genesis): MySQL
Connection string(Genesis) : Server=localhost;Database=Your_GenesisDB_Name;Uid=Your_User_Name;Pwd=******************;
Use existing Genesis Database: False
Identity Server Port : 5000
Admin Project Port : 5050
UI Choice : Create UI project and generate pages/models from database.
UI Port : 3000
Path : /Your_CLI_Folder/My_Application
Microservice(s)
MicroserviceName : Your_Microservice_Name
Database Type: MySQL
Data Source : Server=localhost;Database=Your_DB_Name;Uid=Your_User_Name;Pwd=Your_User_Password;
Port: 5051
Total Table Count: xx
Tables (Only First 20 Displayed): table1, table2, table3, ...
Owned Modules: None
-Summary end-
Saved current configuration.(Pass '--from-config config_create_20YY-MM-DD-hh-mm.json' argument to restore config)
Do you want to proceed ?β
(y/yes) - Yes
(n/no) - No
If you are satisfied with the summary, type yes and press enterβ
Building projects can take several minutes to complete, have a coffee and lean back.
Do you want to run the projects with Docker ?β
If you are a professional, use Docker. Otherwise <no> will be more suitable for you.
If you choose <yes>, please keep in mind that all projects (Backend, UI, Redis, Kafka etc.) will be copied to, built and ran on Docker, so it may take up to 20-25 mins.
(y/yes) - Yes
(n/no) - No
Process completed successfully.β
Congratulations body. You have an almost well structured professional project. βοΈ
You can run the UI project with following codes.
---> cd /projectPathSpecified/My_Application/UI
---> yarn start (recommended)
or
---> npm start
You can run the API projects from following solution file.
Solution file path : projectPathSpecified/My_Application/My_Application.sln
Process completed successfully.
Now jump to How To Run Your Web Application and see what's happening.
Note : If you get any error through the installation which blocks you, check the log files in genesis-yourOSname-x64/Logs folder.
Troubleshootingβ
Can't connect to SQL Server DB. Error: The TCP/IP connection to the host [IP address], port 1433 has failed.β
- Open the SQL Server Configuration Manager.
- Expand SQL Server Network Configuration for the server instance in question.
- Double-click "TCP/IP".
- Under the "Protocol" section, set "Enabled" to "Yes".
- Under the "IP Addresses" section, set the TCP port under "IP All" (which is 1433 by default).
- Under the "IP Addresses" section, find subsections with IP address 127.0.0.1 (for IPv4) and ::1 (for IPv6) and set both "Enabled" and "Active" to "Yes", and TCP port to 1433.
Find this useful https://stackoverflow.com/questions/12774827/cant-connect-to-localhost-on-sql-server-express-2012-2016
Can't connect to DB serverβ
- Check your DB user's privileges
- Check firewall access rules (IP, port restrictions etc.)
- Try using full connection string instead of the builder
Failed to create databaseβ
You may need to install EF Core Tools first. (Please check Prerequisites)
Failed scaffoldingβ
Check your DB user's privileges. You may need to give it permissions to access system tables and create new database.
EF Core Command-line Tools 3.0+ (Required) No such file or directoryβ
There may be conflicts between runtimes. So check the versions and remove the old and unnecessary ones.
dotnet --list-sdks
dotnet --list-runtimes
version="x.x.x"
sudo rm -rf /usr/local/share/dotnet/sdk/$version
sudo rm -rf /usr/local/share/dotnet/shared/Microsoft.NETCore.App/$version
sudo rm -rf /usr/local/share/dotnet/shared/Microsoft.AspNetCore.All/$version
sudo rm -rf /usr/local/share/dotnet/shared/Microsoft.AspNetCore.App/$version
sudo rm -rf /usr/local/share/dotnet/host/fxr/$version